6b386d
@@ -3104,7 +3104,7 @@
public ColumnStatistics get_table_column_statistics(String dbName, String tableN
       try {
         statsObj = getMS().getTableColumnStatistics(dbName, tableName, colName);
       } finally {
-        endFunction("get_column_statistics_by_table: ", statsObj != null);
+        endFunction("get_column_statistics_by_table: ", statsObj != null, null);
       }
       return statsObj;
     }
@@ -3126,7 +3126,7 @@
public ColumnStatistics get_partition_column_statistics(String dbName, String ta
         statsObj = getMS().getPartitionColumnStatistics(dbName, tableName, convertedPartName,
                                                             partVals, colName);
       } finally {
-        endFunction("get_column_statistics_by_partition: ", statsObj != null);
+        endFunction("get_column_statistics_by_partition: ", statsObj != null, null);
       }
       return statsObj;
    }
@@ -3165,7 +3165,7 @@
public boolean update_table_column_statistics(ColumnStatistics colStats)
         ret = getMS().updateTableColumnStatistics(colStats);
         return ret;
       } finally {
-        endFunction("write_column_statistics: ", ret != false);
+        endFunction("write_column_statistics: ", ret != false, null);
       }
     }
 
@@ -3211,7 +3211,7 @@
public boolean update_partition_column_statistics(ColumnStatistics colStats)
         ret = getMS().updatePartitionColumnStatistics(colStats, partVals);
         return ret;
       } finally {
-        endFunction("write_partition_column_statistics: ", ret != false);
+        endFunction("write_partition_column_statistics: ", ret != false, null);
       }
     }
 
@@ -3234,7 +3234,7 @@
public boolean delete_partition_column_statistics(String dbName, String tableNam
         ret = getMS().deletePartitionColumnStatistics(dbName, tableName,
                                                       convertedPartName, partVals, colName);
       } finally {
-        endFunction("delete_column_statistics_by_partition: ", ret != false);
+        endFunction("delete_column_statistics_by_partition: ", ret != false, null);
       }
       return ret;
     }
@@ -3256,7 +3256,7 @@
public boolean delete_table_column_statistics(String dbName, String tableName, S
       try {
         ret = getMS().deleteTableColumnStatistics(dbName, tableName, colName);
       } finally {
-        endFunction("delete_column_statistics_by_table: ", ret != false);
+        endFunction("delete_column_statistics_by_table: ", ret != false, null);
       }
       return ret;
    }
